home *** CD-ROM | disk | FTP | other *** search
- #ifndef _INCLUDE_STRING_H
- #define _INCLUDE_STRING_H
-
- /*
- ** $VER: string.h 1.0 (18.1.96)
- ** StormC Release 1.0
- **
- ** '(C) Copyright 1995 Haage & Partner Computer GmbH'
- ** All Rights Reserved
- */
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- #ifndef NULL
- #define NULL 0
- #endif
-
- typedef unsigned int size_t;
-
- char *strcpy (char *, const char *);
- char *strncpy(char *, const char *, size_t);
- char *strcat (char *, const char *);
- char *strncat(char *, const char *, size_t);
- int strcmp (const char *, const char *);
- int strncmp(const char *, const char *, size_t);
- char *strchr (const char *, int);
- char *strrchr(const char *, int);
- size_t strspn (const char *, const char *);
- size_t strcspn(const char *, const char *);
- char *strpbrk(const char *, const char *);
- char *strstr(const char *, const char *);
- size_t strlen(const char *);
- char *strerror(int);
- char *strtok(char *, const char *);
-
- int stricmp(const char *, const char *);
- char *strlwr(char *);
- char *strupr(char *);
-
- void *memcpy(void *, const void *, size_t);
- void *memmove(void *, const void *, size_t);
- int memcmp(const void *, const void *, size_t);
- void *memchr(const void *, int, size_t);
- void *memset(void *, int, size_t);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-